home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / harvest.cpt / Harvest C / CTclShellDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-08  |  615 b   |  32 lines

  1. /******************************************************************************
  2.  CTclShellDialog.h
  3.  
  4.         
  5.     SUPERCLASS = CDLOGDirector
  6.     
  7.     Copyright ⌐ 1991 Symantec Corporation. All rights reserved.
  8.     
  9.  
  10.  ******************************************************************************/
  11.  
  12. #define _H_CTclShellDialog
  13.  
  14. #include "CDLOGDirector.h"
  15. #include "CDialogText.h"
  16.  
  17. class CTclShellDialog : public CDLOGDirector
  18. {
  19.  
  20. public:
  21.  
  22.     CDialogText *itsShellItem;
  23.     CDialogText *itsStatusItem;
  24.     
  25.     void ITclShellDialog( void);
  26.     
  27.     virtual void SetupItems( void);
  28.     virtual void DoCommand( long aCmd);
  29.         
  30.     virtual void Dispose( void);
  31.     
  32. };